home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PCGUIA 117
/
PC Guia 117.iso
/
swf
/
programas.swf
/
scripts
/
frame_36
/
DoAction.as
< prev
Wrap
Text File
|
2005-06-27
|
293b
|
15 lines
targetOben = 200;
targetUnten = 100;
speed = 4;
hit_mc.onEnterFrame = function()
{
if(menu_mc.hitTest(_root._xmouse,_root._ymouse,false))
{
hit_mc._x += (targetOben - hit_mc._x) / speed;
}
else
{
hit_mc._x += (targetUnten - hit_mc._x) / speed;
}
};